home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 38
/
Aminet 38 (2000)(Schatztruhe)[!][Aug 2000].iso
/
Aminet
/
docs
/
help
/
arexxbegin.lha
/
ARexx_For_Beginners
/
Articles_01-10
/
Example9-1.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1994-12-14
|
175 b
|
9 lines
/* Example09-1 */
SAY 'Enter Number 1'
PULL N1
SAY 'Enter Number 2'
PULL N2
SAY N1 'to the power of' N2 'is' N1 ** N2
SAY N1 'divided by' N2 '=' N1 % N2 'remainder' N1 // N2